Skip to content

Instantly share code, notes, and snippets.

@Pusnow
Pusnow / CS 분야 우수 학술대회 목록.csv
Last active August 10, 2026 10:26
CS 분야 우수 학술대회 목록
약자 한국정보과학회 (2024) BK21플러스 IF (2018) KAIST CS (2025) SNU CSE (2024.4) POSTECH CSE (2026.1) 평균 (정규화) 학회명 DBLP Key
AAAI 최우수 4 O O 최우수 1.00 AAAI Conference on Artificial Intelligence (AAAI) conf/aaai
AAMAS 우수 2 0.20 International Conference on Autonomous Agents and Multiagent Systems (AAMAS) conf/ifaamas
ACCV 우수 1 우수 0.25 Asian Conference on Computer Vision (ACCV) conf/accv
ACL 최우수 4 O O 최우수 1.00 Annual Meeting of the Association for Computational Linguistics (ACL) conf/acl
ACL Findings 우수 우수 0.20 Findings of ACL series/findacl
ACNS 우수 0.10 International Conference on Applied Cryptography and Network Security (ACNS) conf/acns
ACSAC 우수 2 우수 0.30 Annual Computer Security Applications Conference (ACSAC) conf/acsac
AIED 우수 0.10 International Conference on Artificial Intelligence in Education (AIED) conf/aied
AISTATS 우수 1 우수 0.25 International Conference on Artificial Intelligence and Statistics (AISTATS) conf/aistats
@devinschumacher
devinschumacher / how-to-onlyfans.md
Last active August 10, 2026 10:25
How to Download OnlyFans Profiles Videos & Images for FREE (yt-dlp method)

How to Download Onlyfans Profile's Videos & Images for FREE (yt-dlp tutorial)

Follow along with the video 👇

@AneurysAdames
AneurysAdames / office-activation.md
Created September 4, 2024 12:01
Office Activation Command by Omman

Office 2021

Method 1: Using my command line

Step 1.1: Open cmd program with administrator rights.

  • First, you need to open cmd in the admin mode, then run all commands below one by one.

Step 1.2: Get into the Office directory in cmd.

  • For x86 and x64
cd /d %ProgramFiles(x86)%\Microsoft Office\Office16
cd /d %ProgramFiles%\Microsoft Office\Office16
@conradcaffier03
conradcaffier03 / SKILL.md
Created July 26, 2026 10:07
youtube-analyzer/SKILL.md — break down any YouTube video with Claude Code. One drop-in file, no API key, no account. Free from @buildwith.conrad
name youtube-analyzer
description Use when the user gives a YouTube URL and wants the video broken down — transcript, structure, hook, key moments, or the script formula behind it. Works on 5-minute clips and 2-hour talks. Triggers on "/youtube-analyzer <url>", "analyze this video", "break down this video", "what's in this video", "steal this structure".

🆓 YouTube Analyzer — break down any video without watching it

A 40-minute video holds maybe six minutes of signal. You either burn the 40 minutes, or you skip it and never find out. This skill reads the whole thing for you and hands back the structure: the hook, the beats, the timestamps that matter, and the script formula you can reuse.

@mineek
mineek / guide.txt
Last active August 10, 2026 10:17
block revokes permanently on enterprise certs on iOS
This will permanently block revokes and some ppq stuff.
Use this together with the profile to block some domains "without" a DNS.
Even if you don't have the profile, after applying this your device just cannot register revokes anymore. So you'll just not be able to install the app, but you will not get permanently blacklisted.
note this may lead to side effects. I am not sure. However, it does work.
AS ALWAYS, USE AT YOUR OWN RISK.
Basically all u need to do is run these commands one by one in a terminal on a jailbroken device:
@khanhduytran0
khanhduytran0 / _MissedRevoke.md
Last active August 10, 2026 10:17
Bypass revoke and expired certs for iOS 26.x

This is for iOS 26+ only. Read mineek's secret.txt for more info.

I didn't plan to release this that early, but as iOS 27 has already nuked partial restore; and A12/A13 being jailbreakable (including A12 iPads EOL at 26) as soon as a new kernel exploit drops, there is not much to lose.

MissedRevoke

(the "secret.txt" for iOS 26)

iOS has had a long time storing revocation details in separate plists, it was trivially bypassable by zeroing and chflags immutable on them. Since iOS 26.0b2, all of these files have been migrated to mis.db.

@wincent
wincent / agent-sandboxen.md
Last active August 10, 2026 10:12
List of coding agent sandboxes 2026-05

Coding Agent Sandboxes — Comprehensive List

Compiled from awesome-lists (restyler/awesome-sandbox, webcoyote/awesome-AI-sandbox, bureado/awesome-agent-runtime-security) and a survey of vendor blogs / field guides published through 2026. Grouped by isolation primitive and then by deployment model.

1. OS-level primitives (no container, no VM)

These rely on kernel/userland features to constrain a normal host process. Lowest overhead, weakest boundary.

  • macOS Seatbelt / sandbox-exec — Apple's TrustedBSD-based MAC framework. Used directly by Codex CLI, Gemini CLI, and underneath Anthropic's srt.
  • Linux Landlock — Unprivileged filesystem/network LSM; default backend for Codex CLI on Linux.
@4lgn
4lgn / arch-linux-cleanup.md
Last active August 10, 2026 10:12
Arch Linux Cleanup

Arch Linux Cleanup

Basic notes and commands/scripts to help ease the cleanup process of your Arch Linux installation.

Introduction

One of the big pros of using Arch Linux is obviously the reduced bloat on your system, as you are obviously the sole proprietor of such bloat.

However, just as a large software project that gets developed on constantly, we end up with technical debt - and when using your Arch system as a daily driver, you will probably acquire a certain amount of such "bloat debt" over the years.

@tin-z
tin-z / VR_roadmap.md
Last active August 10, 2026 10:11
Becoming a (pre-AI) Vulnerability Researcher roadmap: my personal experience
@NobeKanai
NobeKanai / mac.ahk
Last active August 10, 2026 10:06
This AHK script brings most macOS keyboard shortcuts to Windows. It assumes a US keyboard layout (without an Fn key) and that you have physically swapped your left Ctrl and Alt keys.
#Requires AutoHotkey v2.0
#SingleInstance Force
#Warn All, MsgBox
#InputLevel 1
; ==============================================================================
; INITIALIZATION & GLOBAL SETTINGS
; ==============================================================================
CoordMode("ToolTip", "Screen")
SetKeyDelay(-1, -1) ; Remove delay for SendEvent to ensure fastest execution